home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTest3
- AutoRedraw = -1 'True
- BorderStyle = 0 'None
- ClientHeight = 2652
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3468
- ControlBox = 0 'False
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2652
- ScaleWidth = 3468
- ShowInTaskbar = 0 'False
- Begin VB.CommandButton cmdSet
- Caption = "&Change Text"
- Height = 372
- Left = 1920
- TabIndex = 2
- Top = 780
- Width = 1392
- End
- Begin VB.TextBox txtText
- Height = 312
- Left = 60
- TabIndex = 0
- Top = 300
- Width = 3252
- End
- Begin VB.Label lbl
- Caption = "Window text:"
- Height = 252
- Left = 60
- TabIndex = 1
- Top = 60
- Width = 1992
- End
- Attribute VB_Name = "frmTest3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdSet_Click()
- frmMain.g_wndTest.Text = txtText
- End Sub
-